home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT2.SPK / test / test_b / tests2_2 / c / enumbool < prev    next >
Text File  |  1996-08-28  |  143b  |  14 lines

  1. typedef enum { false = 0, true } bool;
  2.  
  3. bool f (bool b)
  4. {
  5.   if (b)
  6.     {
  7.       return ( 3 > 4);
  8.     }
  9.   else
  10.     {
  11.       return false;
  12.     }
  13. }
  14.